emsi_containers ~master (2021-09-24T04:23:14Z)
Home
Dub
Repo
SList.put
containers
slist
SList
Inserts an item at the front of the list.
Complexity: O(1)
void
insertFront
(T t)
alias
insert
=
insertFront
alias
insertAnywhere
=
insertFront
alias
put
=
insertFront
struct
SList
(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
alias
put
=
insertFront
Meta
Source
See Implementation
containers
slist
SList
aliases
insert
insertAnywhere
put
constructors
this
destructors
~this
functions
back
clear
empty
front
insertFront
length
moveFront
opOpAssign
opSlice
popFront
remove
postblits
this(this)
Inserts an item at the front of the list.
Complexity: O(1)